-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding M9 Seattle Basin Adjustment + Campbell and Bozorgnia (2014) basin term to ModifiableGMPE capabilities #10118
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
micheles
reviewed
Nov 5, 2024
micheles
reviewed
Nov 5, 2024
CB-quakemodel
changed the title
M9 Basin Term for US 2023 Model
[WIP] M9 Basin Term for US 2023 Model and Adjusted Subduction Interface GMMs
Nov 6, 2024
CB-quakemodel
changed the title
[WIP] M9 Basin Term for US 2023 Model and Adjusted Subduction Interface GMMs
[WIP] Adding M9 Seattle Basin Adjustment + Campbell and Bozorgnia (2014) basin term to ModifiableGMPE capabilities
Nov 7, 2024
CB-quakemodel
changed the title
[WIP] Adding M9 Seattle Basin Adjustment + Campbell and Bozorgnia (2014) basin term to ModifiableGMPE capabilities
Adding M9 Seattle Basin Adjustment + Campbell and Bozorgnia (2014) basin term to ModifiableGMPE capabilities
Nov 7, 2024
mmpagani
approved these changes
Nov 11, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds the M9 Basin adjustment and the Campbell and Bozorgnia 2014 basin term to ModifiableGMPE.
The M9 basin adjustment is an additive factor to the mean ground-motion for long period spectral accelerations (T > 1.9 s) of + log(2.0) for all sites with z2pt5 greater than or equal to 6 km for interface sources within the Seattle basin applied in the US 2023 conterminous hazard model.
The M9 basin term is applied in the US 2023 interface GMC for sites in the Seattle Basin. The adjustment is made to the ZhaoEtAl2006SInter, AtkinsonMacias2009, ParkerEtAl2020SInterB (basin version) and KuehnEtAl2020SInter GMMs. The M9 basin adjustment is not applied to AbrahamsonGulerce2020SInter (which uses the US adjustment factor).
The US implementation of the M9 basin adjustment is conditional upon the pre-basin amplification mean + the M9 basin adjustment being greater than the pre-basin amplification mean + the M9 adjustment (pp. 1178 of Moschetti et al. 2024). This does not apply for the AtkinsonMacias2009 and ZhaoEtAl2006SInter classes because they do not have their own basin terms (for the non-M9 versions they use the CampbellBozorgnia14 basin term, thus the adding of this basin term to ModifiableGMPE here too).
The PR adds the following:
A separate ModifiableGMPE class (as exists for example for CY14 site term and NRCAN15 site terms) for both M9 basin adjustment and the CB14 basin term. Having a separate ModifiableGMPE class for M9 and CB14 basin terms with importable basin adjustment gives us flexibility depending on how we implement these adjustments within the OQ gsims too.
The ability to specify the M9 basin adjustment or the CB14 basin term as a kwarg when instantiating a ModifiableGMPE from a GSIM LT XML (or programmatically), like any other ModifiableGMPE capability such as the Al Atik 2015 sigma model.
Some simple unit tests. For the M9 basin adjustment, these are checking that the basin adjustment is only applied for long period ground-motions at sites with z2pt5 > 6 km, with an expected different of log(2.0) being obtained at these sites compared to the values obtained at the same sites with the unmodified version of the same GMM. For the CB14 basin term, these are checking that the expected results are obtained for cases in which the adjustment is not applied, and the case that it is applied either through the CB14 basin term ModifiableGMPE class, or as a keyword when instantiating a generic ModifiableGMPE.
Some example plots are provided here showing the M9 adjustment factor for the KuehnEtAl2020SInter and ParkerEtAl2020SInterB GMMs for an interface event with focal depth of 40 km, vs30 = 500 m/s and z2pt5 = 6 km:
Some example plots are also provided showing the impact of the CB14 basin term when applied to the AtkinsonMacias2009 GMM:
T > 1.9 s threshold for M9 term is confirmed by usgs java code (e.g. line 205 of https://code.usgs.gov/ghsc/nshmp/nshmp-lib/-/blob/main/src/main/java/gov/usgs/earthquake/nshmp/gmm/AtkinsonMacias_2009.java?ref_type=heads).
The US 2023 GMM adjustments are preliminarily discussed here too for reference - #9894